from gevi_classes import *
from paths import *
%matplotlib inline
%load_ext autoreload
%autoreload 2
import pandas as pd
import seaborn as sns
import statsmodels.formula.api as smf
from sklearn.linear_model import LinearRegression
from sklearn import metrics
from sklearn.cross_validation import train_test_split
import numpy as np
from IPython.display import set_matplotlib_formats
set_matplotlib_formats('jpeg')
%config InlineBackend.figure_format = 'jpeg'
%config InlineBackend.rc = {'font.size': 10, 'figure.figsize': (6.0, 4.0), \
'figure.facecolor': (1, 1, 1, 0), 'savefig.dpi': 36, \
'figure.subplot.bottom': 0.125, 'figure.edgecolor': (1, 1, 1, 0)}
%%javascript
IPython.OutputArea.auto_scroll_threshold = 100;
# instantiate utility class
gr = Graph()
# load data
mice = loadDataLight()
# loadMask(mice.mice)
gr.plotTF(mouseA, mask=True)
gr.plotTF(mouseB, mask=False)
gr.plotTF(mouseM1217F, mask=True)